home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / terms / kermit / kits / make-kit < prev    next >
Encoding:
Text File  |  1993-01-25  |  409 b   |  27 lines

  1. #! /bin/sh -e
  2.  
  3. # tale 930125
  4. # incestuous, isn't it?
  5.  
  6. kits=../kits
  7. out=$1.tar
  8. dir=$2
  9. shift; shift;
  10.  
  11. if [ -d $out.Z-split ]; then
  12.   echo remove old compressed and split version
  13.   rm -r $out.Z-split
  14. fi
  15.  
  16. if [ -f $out.Z ]; then
  17.   echo remove old compressed version
  18.   rm $out.Z;
  19. fi
  20.  
  21. echo make tar file
  22. (cd $dir; tar cf $kits/$out $*)
  23. echo compress tar file
  24. compress $out
  25. echo possibly split tar file
  26. ksplit $out.Z
  27.